home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / grindr.zip / GRINDER.EXE / DATA.Z / applet.gri next >
Text File  |  1996-03-23  |  358b  |  15 lines

  1. //    This is a sample file that will create a new applet that displays
  2. //    the phrase "Hello Brave New World!" in a window.
  3.  
  4. package java.applet;
  5.  
  6. import java.awt.Graphics;
  7.  
  8. public class MyNewApplet extends Applet {
  9.     public void init() {
  10.         resize(300,200);
  11.     }
  12.     public void paint(Graphics g) {
  13.         g.drawString("Hello Brave New World!", 50, 25);
  14.     }
  15. }